(Fwindow_end): Fix use of >= operator.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 4 Jan 2007 00:15:16 +0000 (00:15 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 4 Jan 2007 00:15:16 +0000 (00:15 +0000)
src/window.c

index 2a7b5ef6c684520ee8f234748daa1073559cd5c7..d052a5786dcd3365985fff5c844d63be7bd986e0 100644 (file)
@@ -1183,7 +1183,7 @@ if it isn't already recorded.  */)
   if (! NILP (update)
       && ! (! NILP (w->window_end_valid)
            && XFASTINT (w->last_modified) >= BUF_MODIFF (b)
-           && XFASTINT (w->last_overlay_modified) => BUF_OVERLAY_MODIFF (b))
+           && XFASTINT (w->last_overlay_modified) >= BUF_OVERLAY_MODIFF (b))
       && !noninteractive)
     {
       struct text_pos startp;